home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
boosters.arc
/
XBOXUL.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-11-07
|
655b
|
31 lines
Program XboxUl;
(*$IBoDecl*)
(*$IPutStr*)
(*$ICopies*)
(*$IFillHeap*)
(*$IPutHeap*)
(*$IRestores*)
(*$IBoxHeap*)
(*$IBoxul*)
BEGIN
ClrScr;
PutStr ( h, 'USING BOXUL', 35, 12, 14 );
for i := 0 to 8 do
boxul ( 5 + (3*i), 2+i, 75 - (3*i), 23-i ,
Random(4)+1, Yellow );
ClrScr;
Mark ( HeapTop );
New ( Page[1] );
FillHeap ( Page[1], 1,1,80,25,#32,14 );
for i := 0 to 8 do
boxHeap ( page[1], 5 + (3*i), 2+i, 75 - (3*i), 23-i ,
Random(4)+1, Yellow );
RestoreScreen ( page[1] );
PutStr ( h, 'USED BOXHEAP', 35, 12, 14 );
Release ( HeapTop );
END.